home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 013 / doshelp.arc / COPYTO-B.BAT < prev    next >
Encoding:
DOS Batch File  |  1985-04-27  |  1.0 KB  |  38 lines

  1. echo off
  2. cls
  3. echo HELP TRANSFER TO DRIVE B
  4. echo .
  5. echo This utility copies HELP to a floppy disk on Drive B.  Place the
  6. echo original disk with the HELP program in Drive A.  Place a FORMATTED
  7. echo disk in Drive B, and then press any key to continue.
  8. echo .
  9. echo It is OK to have other programs or DOS utilities on the formatted
  10. echo disk in Drive B, but you will need about 90,000 bytes of space on
  11. echo Drive B for the HELP files NOT COUNTING SPACE FOR BASICA.
  12. echo .
  13. echo If you DO NOT want to continue with this transfer, hold down the
  14. echo CTRL (control) key and simultaneously press C.  Then answer with
  15. echo a Y when DOS asks if you want to terminate the batch job.
  16. echo .
  17. echo Otherwise, press any key to continue.
  18. echo .
  19. pause
  20. cd a:\
  21. cd b:\
  22. copy a:help.bat b:/v
  23. cd a:\help
  24. copy a:readme.bat b:/v
  25. copy a:readme.doc b:/v
  26. copy a:copyto-b.bat b:/v
  27. copy a:copyto-c.bat b:/v
  28. copy a:read-too.bat b:/v
  29. copy a:read-too.doc b:/v
  30. mkdir b:\help
  31. cd b:\help
  32. copy a:*.* b:/v
  33. cd a:\
  34. cd b:\
  35. cls
  36. echo on
  37. rem   * Done with Transfer of HELP *
  38.